16. Mutator Functions
Mutators
Mutator Functions
A mutator ("setter") function can apply logic ("invariants") when updating member data.
Exercise: Car Class
In this lab you will create a setter method that receives data as an argument an converts it to a different type. Specifically, you will receive a string as input and convert it to a character array.
- Create a class called
Car
. - Create 3 member variables:
horsepower
,weight
andbrand
. Thebrand
attribute must be a character array. - Create accessor and mutator functions for all member data. The mutator function for
brand
must accept a C++ string as a parameter and convert that string into a C-style string (a character array ending in null character) to set the value ofbrand
. - The accessor function for the
brand
must return a string, so in this function you first will need to convertbrand
tostd::string
, and then return it.
Workspace
This section contains either a workspace (it can be a Jupyter Notebook workspace or an online code editor work space, etc.) and it cannot be automatically downloaded to be generated here. Please access the classroom with your account and manually download the workspace to your local machine. Note that for some courses, Udacity upload the workspace files onto https://github.com/udacity, so you may be able to download them there.
Workspace Information:
- Default file path:
- Workspace type: jupyter
- Opened files (when workspace is loaded): n/a